home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / e_to_l / fbuilder / delphi / demos / varxmpfm.dfm / varxmpfm.txt
Encoding:
Text File  |  1996-09-15  |  2.1 KB  |  104 lines

  1. object Varform: TVarform
  2.   Left = 81
  3.   Top = 114
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Variable Handling Example'
  7.   ClientHeight = 304
  8.   ClientWidth = 579
  9.   Font.Color = clWindowText
  10.   Font.Height = -16
  11.   Font.Name = 'System'
  12.   Font.Style = []
  13.   PixelsPerInch = 120
  14.   Position = poScreenCenter
  15.   ShowHint = True
  16.   Visible = True
  17.   OnCreate = FormCreate
  18.   OnDestroy = FormDestroy
  19.   TextHeight = 20
  20.   object Label1: TLabel
  21.     Left = 60
  22.     Top = 10
  23.     Width = 521
  24.     Height = 25
  25.     Caption = 'Expression = MyFunc(x,y) which returns the sum x + y'
  26.   end
  27.   object ResultMemo: TMemo
  28.     Left = 30
  29.     Top = 50
  30.     Width = 519
  31.     Height = 181
  32.     ScrollBars = ssVertical
  33.     TabOrder = 0
  34.   end
  35.   object Button1: TButton
  36.     Left = 30
  37.     Top = 250
  38.     Width = 91
  39.     Height = 41
  40.     Hint = 'Access vars thru Variables Property'
  41.     Caption = 'Variables'
  42.     Font.Color = clBlack
  43.     Font.Height = -15
  44.     Font.Name = 'Arial'
  45.     Font.Style = []
  46.     ParentFont = False
  47.     TabOrder = 1
  48.     OnClick = Button1Click
  49.   end
  50.   object Button2: TButton
  51.     Left = 128
  52.     Top = 250
  53.     Width = 91
  54.     Height = 41
  55.     Hint = 'Access vars thru GetVarPtr method'
  56.     Caption = 'GetVarPtr'
  57.     Font.Color = clBlack
  58.     Font.Height = -15
  59.     Font.Name = 'Arial'
  60.     Font.Style = []
  61.     ParentFont = False
  62.     TabOrder = 2
  63.     OnClick = Button2Click
  64.   end
  65.   object BitBtn1: TBitBtn
  66.     Left = 435
  67.     Top = 250
  68.     Width = 111
  69.     Height = 41
  70.     TabOrder = 3
  71.     Kind = bkClose
  72.   end
  73.   object Button3: TButton
  74.     Left = 225
  75.     Top = 250
  76.     Width = 91
  77.     Height = 41
  78.     Hint = 'Access vars thru the VariableList Property'
  79.     Caption = 'VariableList'
  80.     Font.Color = clBlack
  81.     Font.Height = -15
  82.     Font.Name = 'Arial'
  83.     Font.Style = []
  84.     ParentFont = False
  85.     TabOrder = 4
  86.     OnClick = Button3Click
  87.   end
  88.   object Button4: TButton
  89.     Left = 323
  90.     Top = 250
  91.     Width = 98
  92.     Height = 41
  93.     Hint = 'Access vars thru the StringValues Property'
  94.     Caption = '&StringValues'
  95.     Font.Color = clBlack
  96.     Font.Height = -15
  97.     Font.Name = 'Arial'
  98.     Font.Style = []
  99.     ParentFont = False
  100.     TabOrder = 5
  101.     OnClick = Button4Click
  102.   end
  103. end
  104.